unilateral constraint - определение. Что такое unilateral constraint
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое unilateral constraint - определение

PROGRAMMING PARADIGM WHICH COMBINES LOGIC PROGRAMMING AND CONSTRAINT SATISFACTION
Constraint Logic Programmimg; Constraint store; Constraint-logic programming; Finite constraint; Finite domain constraint; Constraint Logic Programming; CLP(FD)
Найдено результатов: 216
Constraint (computational chemistry)         
  • Resolving the constraints of a rigid water molecule using [[Lagrange multipliers]]: a) the unconstrained positions are obtained after a simulation time-step, b) the [[gradients]] of each constraint over each particle are computed and c) the Lagrange multipliers are computed for each gradient such that the constraints are satisfied.
METHOD FOR SATISFYING THE NEWTONIAN MOTION OF A RIGID BODY WHICH CONSISTS OF MASS POINTS
SHAKE (constraint); SETTLE (constraint); LINCS (constraint); Constraint algorithm (mechanics); SHAKE algorithm; Simple constraint; M-SHAKE; SETTLE (algorithm); SETTLE; Constraint algorithm
In computational chemistry, a constraint algorithm is a method for satisfying the Newtonian motion of a rigid body which consists of mass points. A restraint algorithm is used to ensure that the distance between mass points is maintained.
Geometric constraint solving         
CONSTRAINT SATISFACTION IN A COMPUTATIONAL GEOMETRY SETTING
Draft:Geometric constraint solving
Geometric constraint solving is constraint satisfaction in a computational geometry setting, which has primary applications in computer aided design. A problem to be solved consists of a given set of geometric elements and a description of geometric constraints between the elements, which could be non-parametric (tangency, horizontality, coaxiality, etc) or parametric (like distance, angle, radius).
Budget constraint         
  • Budget constraint, where <math>A=\frac{m}{P_y}</math> and <math>B=\frac{m}{P_x}</math>
  • An individual should consume at (Qx, Qy).
  • Point X is unobtainable given the current "budget" constraints on production.
THE COMBINATIONS OF GOODS AND SERVICES THAT A CONSUMER MAY PURCHASE GIVEN CURRENT PRICES WITHIN THEIR GIVEN INCOME
Budget line; Resource constraint; Individual budget constraint; Budget Constraint; Soft budget constraint
In economics, a budget constraint represents all the combinations of goods and services that a consumer may purchase given current prices within his or her given income. Consumer theory uses the concepts of a budget constraint and a preference map as tools to examine the parameters of consumer choices .
Unilateral hearing loss         
HEARING IMPAIRMENT
Single sided deafness; Hearing loss, unilateral; Single-sided deafness
Unilateral hearing loss (UHL) is a type of hearing impairment where there is normal hearing in one ear and impaired hearing in the other ear.
Constraint (mathematics)         
CONDITION OF AN OPTIMIZATION PROBLEM THAT A SOLUTION MUST SATISFY
Constraint function; Binding constraint; Non-binding constraint; Inequality constraint
In mathematics, a constraint is a condition of an optimization problem that the solution must satisfy. There are several types of constraints—primarily equality constraints, inequality constraints, and integer constraints.
Unilateral         
DOCTRINE OR AGENDA THAT SUPPORTS ONE-SIDED ACTION
Unilateral; Unilateralist; Unilateral intervention; Unilaterally; Unilateral engagement; Unilateral disengagement; Unilinear; Unilateralism in the United States
·adj Being on one side only; affecting but one side; one-sided.
II. Unilateral ·adj Pertaining to one side; one-sided; as, a unilateral raceme, in which the flowers grow only on one side of a common axis, or are all turned to one side.
Unilateral policy         
WHEN A MANUFACTURER, WITHOUT ANY AGREEMENT WITH THE RESELLER, ANNOUNCES A MINIMUM RESALE PRICE AND REFUSES TO MAKE FURTHER SALES TO ANY RESELLER THAT SELLS BELOW THE ANNOUNCED PRICE
Colgate right; Unilateral Policy; Monsanto Co. v. Spray-Rite Service Corp.
Under a unilateral policy (or "colgate policy" or "unilateral minimum retail price policy") a manufacturer, without any agreement with the reseller, announces a minimum resale price and refuses to make further sales to any reseller that sells below the announced price. Unilateral policy is a form of resale price maintenance that enables a manufacturer to influence the price at which its distributors and dealers resell its products without a formal contract regarding the resale price.
unilaterally         
DOCTRINE OR AGENDA THAT SUPPORTS ONE-SIDED ACTION
Unilateral; Unilateralist; Unilateral intervention; Unilaterally; Unilateral engagement; Unilateral disengagement; Unilinear; Unilateralism in the United States
unilateral         
DOCTRINE OR AGENDA THAT SUPPORTS ONE-SIDED ACTION
Unilateral; Unilateralist; Unilateral intervention; Unilaterally; Unilateral engagement; Unilateral disengagement; Unilinear; Unilateralism in the United States
¦ adjective
1. performed by or affecting only one person, group, or country.
2. relating to or affecting only one side of an organ, the body, etc.
Derivatives
unilateralism noun
unilateralist noun & adjective
unilaterally adverb
unilateralism         
DOCTRINE OR AGENDA THAT SUPPORTS ONE-SIDED ACTION
Unilateral; Unilateralist; Unilateral intervention; Unilaterally; Unilateral engagement; Unilateral disengagement; Unilinear; Unilateralism in the United States
1.
Unilateralism is the belief that one country should get rid of all its own nuclear weapons, without waiting for other countries to do the same.
N-UNCOUNT
2.
Unilateralism is used to refer to a policy in which one country or group involved in a situation takes a decision or action on its own, without the agreement of the other countries or groups involved.
...the recent history of American aggressive unilateralism on trade.
N-UNCOUNT

Википедия

Constraint logic programming

Constraint logic programming is a form of constraint programming, in which logic programming is extended to include concepts from constraint satisfaction. A constraint logic program is a logic program that contains constraints in the body of clauses. An example of a clause including a constraint is A(X,Y) :- X+Y>0, B(X), C(Y). In this clause, X+Y>0 is a constraint; A(X,Y), B(X), and C(Y) are literals as in regular logic programming. This clause states one condition under which the statement A(X,Y) holds: X+Y is greater than zero and both B(X) and C(Y) are true.

As in regular logic programming, programs are queried about the provability of a goal, which may contain constraints in addition to literals. A proof for a goal is composed of clauses whose bodies are satisfiable constraints and literals that can in turn be proved using other clauses. Execution is performed by an interpreter, which starts from the goal and recursively scans the clauses trying to prove the goal. Constraints encountered during this scan are placed in a set called constraint store. If this set is found out to be unsatisfiable, the interpreter backtracks, trying to use other clauses for proving the goal. In practice, satisfiability of the constraint store may be checked using an incomplete algorithm, which does not always detect inconsistency.